home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / automake.0 / automake / automake-1.0 / tests / noinst.test < prev    next >
Encoding:
Text File  |  1996-04-26  |  301 b   |  19 lines

  1. #! /bin/sh
  2.  
  3. # Check to make sure "make install" will build all in directory with
  4. # nothing to install.
  5.  
  6. . $srcdir/defs || exit 1
  7.  
  8. cat > Makefile.am << 'END'
  9. all-local:
  10.     exit 1
  11. END
  12.  
  13. $AUTOMAKE || exit 1
  14.  
  15. # "make install" should fail here if there is a bug.
  16. make -f Makefile.in install && exit 1
  17.  
  18. exit 0
  19.